home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Borland / Borland C++ V5.02 / GDIPAL.PAK / TOOLBAR.C < prev    next >
C/C++ Source or Header  |  1997-05-06  |  6KB  |  157 lines

  1. // THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF
  2. // ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO
  3. // THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
  4. // PARTICULAR PURPOSE.
  5. //
  6. // Copyright (C) 1993-1995  Microsoft Corporation.  All Rights Reserved.
  7. //
  8. //  MODULE: toolbar.c
  9. //
  10. //  PURPOSE: Handles general routines for the Toolbar control
  11. //
  12. //  FUNCTIONS:
  13. //    CreateTBar    - Creates the Toolbar control for the sample.
  14. //    MsgNotify     - Handles the WM_NOTIFY message that gets sent to
  15. //                    the parent window to get ToolTip Text.
  16. //  COMMENTS:
  17. //
  18.  
  19. #include <windows.h>            // required for all Windows applications
  20. #include <windowsx.h>
  21. #include <commctrl.h>           // prototypes and defs for common controls
  22. #include "globals.h"            // prototypes specific to this application
  23. #include "toolbar.h"            // prototypes and #defines for toolbar.c
  24.  
  25. // Global Variable for the toolbar control.
  26.  
  27. HWND    hWndToolbar;
  28.  
  29. //  **TODO**  Change the following values to match your toolbar bitmap
  30. //
  31. // NUMIMAGES    = Number of images in toolbar.bmp.  Note that this is not
  32. //                the same as the number of elements on the toolbar.
  33. // IMAGEWIDTH   = Width of a single button image in toolbar.bmp
  34. // IMAGEHEIGHT  = Height of a single button image in toolbar.bmp
  35. // BUTTONWIDTH  = Width of a button on the toolbar (zero = default)
  36. // BUTTONHEIGHT = Height of a button on the toolbar (zero = default)
  37.  
  38. #define NUMIMAGES       18
  39. #define IMAGEWIDTH      18
  40. #define IMAGEHEIGHT     17
  41. #define BUTTONWIDTH     0
  42. #define BUTTONHEIGHT    0
  43.  
  44. //  **TODO**  Add/remove entries in the following array to define the 
  45. //            toolbar buttons (see documentation for TBBUTTON).
  46.  
  47. TBBUTTON tbButton[] =             // Array defining the toolbar buttons
  48.  
  49.     // the struct goes like this:
  50.     // bitmap index, WM_COMMAND id, state, style, reserved bytes, app data,
  51.     // string index
  52.     // Note that the reserved bytes exist only for Win32 targets
  53. {
  54.      { 0, IDM_FILENEW,     TBSTATE_ENABLED,       TBSTYLE_BUTTON, {0, 0}, 0, 0},
  55.      { 1, IDM_FILEOPEN,    TBSTATE_INDETERMINATE, TBSTYLE_BUTTON, {0, 0}, 0, 0},
  56.      { 2, IDM_FILESAVE,    TBSTATE_INDETERMINATE, TBSTYLE_BUTTON, {0, 0}, 0, 0},
  57.      { 6, IDM_FILEPRINT,   TBSTATE_INDETERMINATE, TBSTYLE_BUTTON, {0, 0}, 0, 0},
  58.      { 0, 0,               TBSTATE_ENABLED,       TBSTYLE_SEP,    {0, 0}, 0, 0},
  59. //    { 3, IDM_EDITCUT,     TBSTATE_ENABLED,  TBSTYLE_BUTTON, {0, 0}, 0, 0},
  60. //    { 4, IDM_EDITCOPY,    TBSTATE_ENABLED,  TBSTYLE_BUTTON, {0, 0}, 0, 0},
  61. //    { 5, IDM_EDITPASTE,   TBSTATE_ENABLED,  TBSTYLE_BUTTON, {0, 0}, 0, 0},
  62. //    { 0, 0,               TBSTATE_ENABLED,  TBSTYLE_SEP,    {0, 0}, 0, 0},
  63.      { 9, IDM_PIXEL,       TBSTATE_ENABLED,    TBSTYLE_CHECKGROUP, {0, 0}, 0, 0},
  64.      {10, IDM_LINE,        TBSTATE_ENABLED,    TBSTYLE_CHECKGROUP, {0, 0}, 0, 0},
  65.      {11, IDM_RECT,        TBSTATE_ENABLED,    TBSTYLE_CHECKGROUP, {0, 0}, 0, 0},
  66.      {12, IDM_ELLIPSE,     TBSTATE_ENABLED,    TBSTYLE_CHECKGROUP, {0, 0}, 0, 0},
  67.      {13, IDM_BEZIER,      TBSTATE_ENABLED,    TBSTYLE_CHECKGROUP, {0, 0}, 0, 0},
  68.      { 0, 0,               TBSTATE_ENABLED,    TBSTYLE_SEP,        {0, 0}, 0, 0},
  69.      {14, IDM_FILL,        TBSTATE_ENABLED,    TBSTYLE_CHECKGROUP, {0, 0}, 0, 0},
  70.      {15, IDM_NOFILL,      TBSTATE_ENABLED,    TBSTYLE_CHECKGROUP, {0, 0}, 0, 0},
  71.      { 0, 0,               TBSTATE_ENABLED,    TBSTYLE_SEP,        {0, 0}, 0, 0},
  72.      {16, IDM_CREATEPEN,   TBSTATE_ENABLED,    TBSTYLE_BUTTON,     {0, 0}, 0, 0},
  73.      {17, IDM_CREATEBRUSH, TBSTATE_ENABLED,    TBSTYLE_BUTTON,     {0, 0}, 0, 0},
  74.      { 0, 0,               TBSTATE_ENABLED,    TBSTYLE_SEP,        {0, 0}, 0, 0},
  75.      { 7, IDM_ABOUT,       TBSTATE_ENABLED,    TBSTYLE_BUTTON,     {0, 0}, 0, 0},
  76. };
  77.  
  78.  
  79. //
  80. //  FUNCTION: CreateTBar(HWND)
  81. //
  82. //  PURPOSE:  Calls CreateToolBarEx()
  83. //
  84. //
  85. //  PARAMETERS:
  86. //
  87. //  hwnd - Window handle : Used for the hWndParent parameter of the control.
  88. //
  89. //  RETURN VALUE:
  90. //
  91. //  If toolbar control was created successfully Return TRUE,
  92. //  else returns FALSE.
  93. //
  94. //  COMMENTS:
  95. //
  96. //
  97.  
  98. BOOL CreateTBar(HWND hwnd)
  99. {
  100.     hWndToolbar = CreateToolbarEx(hwnd,
  101.                                   WS_CHILD | WS_VISIBLE | TBSTYLE_TOOLTIPS,
  102.                                   IDM_TOOLBAR,
  103.                                   NUMIMAGES,
  104.                                   hInst,
  105.                                   IDB_BMP,
  106.                                   tbButton,
  107.                                   sizeof(tbButton)/sizeof(TBBUTTON),
  108.                                   BUTTONWIDTH,
  109.                                   BUTTONHEIGHT,
  110.                                   IMAGEWIDTH,
  111.                                   IMAGEHEIGHT,
  112.                                   sizeof(TBBUTTON));
  113.  
  114.     return (hWndToolbar != NULL);
  115. }
  116.  
  117. //
  118. //  FUNCTION: MsgNotify(HWND, UINT, WPARAM, LPARAM)
  119. //
  120. //  PURPOSE:  WM_NOTIFY is sent to the parent window to get the
  121. //            tooltip text assoc'd with that toolbar button.
  122. //
  123. //  PARAMETERS:
  124. //
  125. //    hwnd      - Window handle  (Unused)
  126. //    uMessage  - Message number (Unused)
  127. //    wparam    - Extra data     (Unused)
  128. //    lparam    - TOOLTIPTEXT FAR*
  129. //
  130. //  RETURN VALUE:
  131. //    Always returns 0 - Message handled
  132. //
  133. //
  134. //  COMMENTS:
  135. //    This message fills in the lpszText field of the TOOLTIPTEXT
  136. //    structure if code == TTN_NEEDTEXT
  137. //
  138.  
  139. #pragma argsused
  140. LRESULT MsgNotify(HWND hwnd, UINT uMessage, WPARAM wparam, LPARAM lparam)
  141. {
  142.     LPTOOLTIPTEXT lpToolTipText;
  143.     static char   szBuffer[64];
  144.  
  145.     lpToolTipText = (LPTOOLTIPTEXT)lparam;
  146.     if (lpToolTipText->hdr.code == TTN_NEEDTEXT)
  147.     {
  148.         LoadString(hInst,
  149.                    lpToolTipText->hdr.idFrom,   // string ID == command ID
  150.                    szBuffer,
  151.                          sizeof(szBuffer));
  152.  
  153.         lpToolTipText->lpszText = szBuffer;
  154.     }
  155.     return 0;
  156. }
  157.